psa.Notes

Overview
Column Descriptions

id – unique identifier for this table (referenced in PhpSettings.noteId)
text – text which will be added into the php configuration. these are assigned to domains via the PhpSettings table. In plesk, you can view this text under the Php Settings page for any particular domain.

Table Structure
CREATE TABLE `Notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `text` text CHARACTER SET utf8 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1

Related documentation